home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / VIEWEX.PAK / ENTERDLG.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  38 lines

  1. // enterdlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CEnterDlg dialog
  15.  
  16. class CEnterDlg : public CDialog
  17. {
  18.     DECLARE_DYNAMIC(CEnterDlg)
  19. // Construction
  20. public:
  21.     CEnterDlg(CWnd* pParent = NULL);    // standard constructor
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CEnterDlg)
  25.     enum { IDD = IDD_CHANGEDATA };
  26.     CString m_strInput;
  27.     //}}AFX_DATA
  28.  
  29. // Implementation
  30. protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.  
  33.     // Generated message map functions
  34.     //{{AFX_MSG(CEnterDlg)
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.